home *** CD-ROM | disk | FTP | other *** search
- ; ascii.ah - ASCII character definitions.
- ; G. R. Mansfield. 84/01/07.
- ; Ver 1.1-4A26.
-
- CV_NUL equ 000h ; null
- CV_SOH equ 001h ; start of header
- CV_STX equ 002h ; start of text
- CV_ETX equ 003h ; end of text
- CV_EOT equ 004h ; end of transmission
- CV_ENQ equ 005h ; enquire
- CV_ACK equ 006h ; acknowledge
- CV_BEL equ 007h ; bell
- CV_BS equ 008h ; backspace
- CV_HT equ 009h ; horizontal tab
- CV_LF equ 00Ah ; line feed
- CV_VT equ 00Bh ; vertical tab
- CV_FF equ 00Ch ; form feed
- CV_CR equ 00Dh ; carriage return
- CV_SO equ 00Eh ; shift out
- CV_SI equ 00Fh ; shift in
-
- CV_DLE equ 010h ; data link escape
- CV_DC1 equ 011h ; device control 1
- CV_DC2 equ 012h ; device control 2
- CV_DC3 equ 013h ; device control 3
- CV_DC4 equ 014h ; device control 4
- CV_NAK equ 015h ; negative acknowledge
- CV_SYN equ 016h ; synchronous idle
- CV_ETB equ 017h ; end transmission block
- CV_CAN equ 018h ; cancel
- CV_EM equ 019h ; end of medium
- CV_SUB equ 01Ah ; substitute
- CV_ESC equ 01Bh ; escape
- CV_FS equ 01Ch ; file separator
- CV_GS equ 01Dh ; group separator
- CV_RS equ 01Eh ; record separator
- CV_US equ 01Fh ; unit separator
-
- CV_SP equ 020h ; SPACE
- CV_DEL equ 07Fh ; DELETE
-
-
-